home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global gExit, gNext, gCardDown, gCastOffset, gSpriteOffset, gDownLoad
- gExit = 26
- gNext = 25
- gCardDown = the number of member "Down"
- gCastOffset = the number of member "First Card" - 1
- gSpriteOffset = 4
- i1 = gSpriteOffset + 1
- i2 = gSpriteOffset + 16
- repeat with i = i1 to i2
- puppetSprite(i, 1)
- end repeat
- setUpGame()
- set the mouseDownScript to "primaryMouseDown"
- end
-
- on PrimaryMouseDown
- global gSprites, gMode, gCard1, gCard2, gMatchCount, gSpriteOffset, gCastOffset, gExit, gNext, gCardDown, gMissCount
- spriteNo = the clickOn
- if (spriteNo > gSpriteOffset) and (spriteNo < (gSpriteOffset + 17)) then
- ListNo = spriteNo - gSpriteOffset
- if getProp(getAt(gSprites, ListNo), #show) = 0 then
- castNo = getProp(getAt(gSprites, ListNo), #image) + gCastOffset
- set the member of sprite spriteNo to member(castNo)
- updateStage()
- setProp(getAt(gSprites, ListNo), #show, 1)
- if gMode = 1 then
- gCard1 = ListNo
- gCard2 = getProp(getAt(gSprites, ListNo), #Match)
- gMode = 2
- else
- if ListNo = gCard2 then
- gMatchCount = gMatchCount + 1
- if gMatchCount = 8 then
- gDownLoad()
- gMode = 3
- end if
- else
- startwait = the ticks
- endwait = startwait + (1 * 60)
- repeat while 1
- if the ticks > endwait then
- exit repeat
- end if
- end repeat
- gMissCount = gMissCount + 1
- if gMissCount > 10 then
- gTryAgain()
- end if
- set the member of sprite (gCard1 + gSpriteOffset) to member(gCardDown)
- set the member of sprite spriteNo to member(gCardDown)
- setProp(getAt(gSprites, gCard1), #show, 0)
- setProp(getAt(gSprites, ListNo), #show, 0)
- updateStage()
- end if
- gMode = 1
- end if
- end if
- set the text of field "Match Score" to string(gMatchCount)
- set the text of field "Miss Score" to string(gMissCount)
- updateStage()
- else
- if spriteNo = gExit then
- go("Quit")
- else
- if spriteNo = gNext then
- setUpGame()
- turnAllDown()
- end if
- end if
- end if
- end
-
- on turnAllDown
- global gCardDown, gSpriteOffset
- i1 = gSpriteOffset + 1
- i2 = gSpriteOffset + 16
- repeat with i = i1 to i2
- set the member of sprite i to member(gCardDown)
- end repeat
- updateStage()
- end
-
- on setUpGame
- global gMode, gSprites, gImages, gMatchCount, gMissCount
- gMode = 1
- gMatchCount = 0
- gMissCount = 0
- set the text of field "Match Score" to string(gMatchCount)
- set the text of field "Miss Score" to string(gMissCount)
- gSprites = [[#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0], [#image: 0, #Match: 0, #show: 0]]
- gImages = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
- repeat with i = 1 to 16
- repeat while 1
- X = random(16)
- if getProp(getAt(gSprites, X), #image) = 0 then
- setProp(getAt(gSprites, X), #image, i)
- setAt(gImages, i, X)
- exit repeat
- end if
- end repeat
- end repeat
- repeat with i = 1 to 8
- sprite1 = getAt(gImages, i)
- sprite2 = getAt(gImages, i + 8)
- setProp(getAt(gSprites, sprite1), #Match, sprite2)
- setProp(getAt(gSprites, sprite2), #Match, sprite1)
- end repeat
- end
-
- on gDownLoad
- go("download")
- end
-
- on gTryAgain
- go("tryagain")
- end
-